a6d34772cdebab47e483f6f764897f472c831170,debugger/impl/com/intellij/debugger/actions/ToggleLineBreakpointAction.java,ToggleLineBreakpointAction,update,#AnActionEvent#,77
Before Change
}
final Presentation presentation = event.getPresentation();
if (ActionPlaces.EDITOR_POPUP.equals(event.getPlace()) ||
ActionPlaces.PROJECT_VIEW_POPUP.equals(event.getPlace()) ||
ActionPlaces.STRUCTURE_VIEW_POPUP.equals(event.getPlace())) {
presentation.setVisible(toEnable);
}
else {
After Change
}
final Presentation presentation = event.getPresentation();
if (ActionPlaces.isPopupPlace(event.getPlace())) {
presentation.setVisible(toEnable);
}
else {